home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Port Scanners / NX.EXE / HOST.H < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-15  |  308 b   |  11 lines

  1. #if !defined(_HOST_INCLUDED)
  2. #define _HOST_INCLUDED
  3.  
  4. struct Host  
  5. {
  6.     unsigned int m_iPort; // the port that the scanner is up to .. an __**index**__ into m_Ports
  7.     char m_szIp[64];      // a string representation of the ip
  8.     SOCKADDR_IN m_sin;    // the structure used in the connect call
  9. };
  10.  
  11. #endif